Conditions | 1 |
Total Lines | 10 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { EMPTY_OBJECT } from "./consts" |
||
7 | |||
8 | //TODO On assignment |
||
9 | /** Checks equality |
||
10 | * @example classNamesCheck<typeof App, typeof require("./module.css")>(module?) // Will return notation as array of not used classes |
||
11 | * @todo On parameter: |
||
12 | * @example classNamesCheck<typeof App>(require("./module.css")) |
||
13 | */ |
||
14 | |||
15 | /** Identical function */ |
||
16 | function classNamesCheck<T extends CssModule>(classnames: T): T |
||
17 | |||
46 |